home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / editor / auror300.zip / CFGPROM.AML < prev    next >
Text File  |  1996-07-17  |  801b  |  32 lines

  1. //--------------------------------------------------------------------
  2. // The Aurora Editor v3.0, Copyright (C) 1993-1996 nuText Systems
  3. //
  4. // CFGPROM.AML
  5. // Configuration for Prompt Style
  6. //--------------------------------------------------------------------
  7.  
  8. include bootpath "define.aml"
  9.  
  10. variable promptstyle
  11.  
  12. // create dialog box
  13. dialog "Prompt Style" 37  7 "cp"
  14.  
  15. // save options group box
  16. groupbox 'Default Prompt Style:' 3 2
  17.   (menu ''
  18.      item " ( ) &Command Line"
  19.      item " ( ) &One-Line Box "
  20.      item " ( ) &Two-Line Box"
  21.      item " ( ) &Dialog Box"
  22.    end) '' _PromptStyle 'c12d'
  23.  
  24. // ok/cancel buttons
  25. button "O&k"    27  3 8
  26. button "Cancel" 27  5 8
  27.  
  28. // display dialogbox
  29. if (getdialog ref promptstyle) == "Ok" then
  30.   prf.PromptStyle  = promptstyle
  31. end
  32.